home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000292_news@columbia.edu _Fri May 12 08:37:40 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id IAA04808
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 12 May 2000 08:37:36 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id IAA07138
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 12 May 2000 08:37:35 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id IAA12525
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 12 May 2000 08:17:25 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Alan Rice" <alanrice@bigfoot.com>
  13. Subject: Re: Pause in build cku192.is5r3netjc
  14. Date: Fri, 12 May 2000 08:21:29 -0400
  15. Organization: Posted via Supernews, http://www.supernews.com
  16. Message-ID: <shnthjj9kcp182@corp.supernews.com>
  17. To: kermit.misc@columbia.edu
  18.  
  19. Thanks Frank,
  20.  
  21. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote in message
  22. news:8ff5r7$fvs$1@newsmaster.cc.columbia.edu...
  23. > In article <shm6917tkcp167@corp.supernews.com>,
  24. > Alan Rice <alanrice@bigfoot.com> wrote:
  25. > : Upgrading some boxes to kermit 6 with build cku192.is5r3netjc and I
  26. found
  27. > : out that the pause command isn'y acting right.
  28. > : When it is given from cmd line or take file like this : pause 2, it just
  29. > : hangs there until you hit the enter key. I need the pauses in an
  30. automated
  31. > : process that runs great on kermit 5 but the bad dates that kermit 5
  32. produces
  33. > : on the get command are causing other problems. Anybody got any ideals on
  34. > : what the problem or fix might be?
  35. > :
  36. > PAUSE just calls sleep(), which is a pretty standard UNIX system service.
  37. > If it's not working in your build, it's because the build was done on a
  38. > different platform than the one you actually have.  I'm afraid the only
  39. > remedy is to build it directly on your platform, but that would require a
  40. > C compiler, linker, and header files.
  41. >
  42. > If you can't do that, here's a shot in the dark: instead of PAUSE 2, try:
  43. >
  44. >   msleep 500
  45. >   msleep 500
  46. >   msleep 500
  47. >   msleep 500
  48. >
  49. > MSLEEP calls a different system service, so it might work.
  50. >
  51. > - Frank
  52.  
  53.